summaryrefslogtreecommitdiffstats
path: root/src/video_core/textures/workers.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/textures/workers.h')
-rw-r--r--src/video_core/textures/workers.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/video_core/textures/workers.h b/src/video_core/textures/workers.h
new file mode 100644
index 000000000..008dd05b3
--- /dev/null
+++ b/src/video_core/textures/workers.h
@@ -0,0 +1,12 @@
+// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#pragma once
+
+#include "common/thread_worker.h"
+
+namespace Tegra::Texture {
+
+Common::ThreadWorker& GetThreadWorkers();
+
+}